Programming
epub |eng | | Author:Jason Lengstorf & Phil Leggetter

The media queries for the home page stay fairly bare-bones. On tablets, you can still fit the forms side by side if they shrink a bit, and on handheld devices ...
( Category: PHP March 26,2014 )
epub, pdf |eng | 2013-07-22 | Author:Nizamettin Gok & Nitin Khanna

Caution Since the Webkit is an open source browser engine, each mobile OS manufacturer might maintain a different version of WebKit. For example, WebKit in an iOS device is different ...
( Category: JavaScript March 26,2014 )
epub, pdf |eng | | Author:Joe Casabona

Come to think of it, we should probably create that stylesheet. Go ahead and add a business-manager.css file to the /director/ folder. We'll populate it later. <div class="business_manager_extras"> <?php $website= ...
( Category: Programming March 26,2014 )
epub, mobi, pdf |eng | 2013-03-25 | Author:Craig Sharkie, Andrew Fisher [Sharkie, Craig]

Adapting Our Example Ahead, the road remains rocky for adaptive images. While srcset has entered draft status with the W3C, the document itself points out that “(i)mplementors should be aware ...
( Category: JavaScript March 26,2014 )
epub, pdf |eng | 2011-10-23 | Author:David Sawyer McFarland [David Sawyer McFarland]

Hiding Form Fields As is common on many product order forms, this tutorial’s form includes separate fields for collecting billing and shipping information. In many cases, this information is exactly ...
( Category: JavaScript March 26,2014 )
epub, pdf |eng | 2013-03-10 | Author:John Anderson

tableview = Ti.UI.createTableView(); rowData = []; for (i=0; i < 5; i++) { row = Ti.UI.createTableViewRow(); btn1 = Ti.UI.createButton({left:10,height:30,width:75,title:"Button1"}); btn2 = Ti.UI.createButton({right:10,height:30,width:75,title:"Button2"}); row.add(btn1); row.add(btn2); rowData.push(row); } tableview.setData(rowData); tableview.addEventListener('click',function(evt){ Ti.API.info(evt); }) ...
( Category: JavaScript March 26,2014 )
epub, pdf |eng | 2013-03-24 | Author:Evan Hahn

expect(8).toBeGreaterThan(5); expect(5).toBeLessThan(12); expect("a").toBeLessThan("z"); // Notice that it works for strings too! Not too difficult! Nearness: toBeCloseTo toBeCloseTo allows you to check if a number is close to another number, given ...
( Category: JavaScript March 26,2014 )
epub |eng | 2010-12-26 | Author:Jacob Sanford & Randy Drisgill & David Drinkwine & Coskun Cavusoglu

The Master Page Structure Master pages are ASP.NET pages written in either VB or C# and have a file extension of “.master”. Interesting enough, the language of the master page ...
( Category: Software Development March 26,2014 )
epub, pdf |eng | 2012-03-05 | Author:Theresa Neil [Theresa Neil]

This pattern may also work for screens with one primary and one ancillary call to action, like Bill Minder. But in these circumstances, visually differentiate the primary call to action ...
( Category: Computer Design March 26,2014 )
epub |eng | 2011-03-25 | Author:Martin L. Abbott & Michael T. Fisher

* * * Rule 28 has an ugly and slightly misleading and controversial title meant to provoke thought and discussion. Of course it makes sense to have a team responsible ...
( Category: Programming March 26,2014 )
epub, pdf |eng | | Author:John Ciliberti

Listing 8-4. Using WhenAll with an IEnumerible public async Task<ActionResult> CallTenServicesAsync() { List<Task<byte[]>> dataTasks = new List<Task<byte[]>>(); for (int i = 0; i < 10; i++) { using (WebClient webClient ...
( Category: Programming March 26,2014 )
epub |eng | 2011-04-20 | Author:MacDonald, Matthew [Matthew MacDonald]

Tracking Visitors As a website owner, you’ll try a lot of different tactics to promote your site. Naturally, some will work while others won’t—and you need to keep the good ...
( Category: Programming March 26,2014 )
mobi |eng | 2012-11-08 | Author:Peter Smith

WORKING WITH THE QUERY CACHE One of the most important features of MySQL (from a performance perspective) is the query cache. First introduced in version 4.0.1, this is a built-in ...
( Category: Programming March 25,2014 )
mobi, epub, pdf |eng | | Author:Andrew Burgess

The first way of changing this that we'll look at is yet another keyword: new. But first, some context. You know what a JavaScript object is. Keeping most of your ...
( Category: JavaScript March 25,2014 )
mobi, epub, pdf |eng | 2011-12-13 | Author:Steve Lydford

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Saved Chart Example</title> </head> <body> <img src="@chartFileName" /> </body> </html> In the code block at the top of the page we check ...
( Category: Programming March 25,2014 )